home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / game / text / EAC14b.lha / EAC / Developers / Tutorials / Tutorial_01.EAC next >
Text File  |  1991-09-25  |  498b  |  14 lines

  1. .-------------------------------------------------------------------------.
  2. |  When an adventure script is loaded, EAC will look for a page called    |
  3. |  ` START '; To declare a page use the command PAGE: , followed by the   |
  4. |  page name. i.e. PAGE:fred , PAGE:three etc. To end a page use the      |
  5. |  command ENDPAGE:                                                       |
  6. `-------------------------------------------------------------------------'
  7.  
  8. PAGE:START
  9.  
  10. Hello world!
  11.  
  12. ENDPAGE:
  13.  
  14.